home *** CD-ROM | disk | FTP | other *** search
- /*
- ### destory an execution window ###
- */
-
- #include <suntool/sunview.h>
- #include <suntool/textsw.h>
- #include <suntool/panel.h>
-
-
- void destroy_exec_windows()
- {
-
- extern short exec_panel_show;
- extern Frame exec_frame;
- extern Panel exec_panel;
- extern Textsw exec_textsw;
-
- if(exec_panel_show){
- window_destroy(exec_textsw);
- window_destroy(exec_panel);
- window_destroy(exec_frame);
- exec_panel_show=0;
- }
-
- }
-
-